home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Dev / misc / temgen.lha / Temgen / Amigamain / Example2 / app.c < prev    next >
C/C++ Source or Header  |  2004-06-26  |  672b  |  30 lines

  1. /*
  2.    shows the use of the tooltype/readarg feature
  3.    call this from Workbench and Shell to see the difference
  4.    Example Shell call: app pubscreen=test jingle nr 3
  5. */
  6.  
  7. #include "app.h"
  8. #include "amigamain.h"
  9.  
  10. #include <stdio.h>
  11.  
  12. void APP_run(void)
  13. {
  14.     config.message_output = TRUE;
  15.     config.message_request = FALSE;
  16.     messagef("Pubscreen %s\n", config.pubscreen);
  17.     messagef("Jingle %ld\n", config.jingle);
  18.     messagef("Number %ld\n", config.nr);
  19.  
  20.     messagef("\nSee what happens if you use %%d instead of %%ld\n");
  21.     messagef("Jingle %d\n", config.jingle);
  22.     messagef("Number %d\n", config.nr);
  23. }
  24.  
  25. void APP_clean(void)
  26. {
  27.     messagef("\nAPP_clean\n");
  28. }
  29.  
  30.